body {
    margin: 0;
    padding: 0;
    background-color: #0b1d3a;
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
  }
  
  .container {
    max-width: 1000px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
  
  header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .emblem {
    width: 150px;
    margin-bottom: 10px;
  }
  
  h1 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
  }
  
  /* вЂ”вЂ”вЂ” РћСЃРЅРѕРІРЅРѕР№ РєРѕРЅС‚РµРЅС‚ РІ 2 СЃС‚СЂРѕРєРё РїРѕ 2 Р±Р»РѕРєР° вЂ”вЂ”вЂ” */
  
  .grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
  }
  
  .cell {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  /* Р’РµСЂС…РЅРёР№ Р»РµРІС‹Р№ Р±Р»РѕРє вЂ” РўРµРєСЃС‚ */
  
  .text-top h2 {
    font-size: 24px;
    line-height: 1.5;
    margin: 0;
  }
  
  /* Р’РµСЂС…РЅРёР№ РїСЂР°РІС‹Р№ Р±Р»РѕРє вЂ” Р¤РѕС‚Рѕ */
  
  .photo-top img {
    width: 200px;
    height: 400px;
    border-radius: 8px;
    padding-right: 25px;
  }
  
  /* РќРёР¶РЅРёР№ Р»РµРІС‹Р№ Р±Р»РѕРє вЂ” РљРЅРѕРїРєР° */
  
  .button-bottom .gosuslugi-btn {
    display: inline-block;
    background-color: #f0f0f0;
    color: black;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 8px;
    transition: background 0.3s;
    width: 220px;
  }
  
  .button-bottom .gosuslugi-btn:hover {
    background-color: #e0e0e0;
  }
  
  .block-text {
    display: block;
    font-size: 14px;
  }
  
  .gos {
    color: #005bbb;
    font-size: 20px;
  }
  
  .uslugi {
    color: #d52b1e;
    font-size: 20px;
  }
  
  /* РќРёР¶РЅРёР№ РїСЂР°РІС‹Р№ Р±Р»РѕРє вЂ” РўРµРєСЃС‚ */
  
  .text-bottom .text-tess {
    font-size: 18px;
    margin: 0;
    line-height: 1.4;
  }
  
  /* РџРѕРґРІР°Р» */
  
  footer {
    font-size: 14px;
    color: #cccccc;
    margin-top: 40px;
  }
  
  /* РђРґР°РїС‚РёРІ РґР»СЏ РјРѕР±РёР»СЊРЅС‹С… */

  .content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
  }
  
  .content-row .left,
  .content-row .right {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .gosuslugi-btn {
    display: inline-block;
    background-color: #f0f0f0;
    color: black;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 8px;
    transition: background 0.3s;
    width: 220px;
    text-align: center;
  }
  
  .gosuslugi-btn:hover {
    background-color: #e0e0e0;
  }
  
  .block-text {
    display: block;
    font-size: 14px;
  }
  
  .gos {
    color: #005bbb;
    font-size: 20px;
  }
  
  .uslugi {
    color: #d52b1e;
    font-size: 20px;
  }
  
  .medal {
    max-width: 180px;
    height: auto;
  }
  
  /* РњРѕР±РёР»СЊРЅР°СЏ Р°РґР°РїС‚Р°С†РёСЏ */
  @media (max-width: 768px) {
    .content-row {
      flex-direction: column;
    }
  
    .medal {
      margin-top: 20px;
      max-width: 140px;
    }
  }
  
  
  @media (max-width: 768px) {
    .grid-layout {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }
  